home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / JFC.bin / BasicMenuItemUI.java < prev    next >
Text File  |  1998-06-30  |  7KB  |  229 lines

  1. /*
  2.  * @(#)BasicMenuItemUI.java    1.59 98/02/02
  3.  * 
  4.  * Copyright (c) 1997 Sun Microsystems, Inc. All Rights Reserved.
  5.  * 
  6.  * This software is the confidential and proprietary information of Sun
  7.  * Microsystems, Inc. ("Confidential Information").  You shall not
  8.  * disclose such Confidential Information and shall use it only in
  9.  * accordance with the terms of the license agreement you entered into
  10.  * with Sun.
  11.  * 
  12.  * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE
  13.  * SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  14.  * IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  15.  * PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR ANY DAMAGES
  16.  * SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING
  17.  * THIS SOFTWARE OR ITS DERIVATIVES.
  18.  * 
  19.  */
  20.  
  21. package com.sun.java.swing.plaf.basic;
  22.  
  23. import java.awt.*;
  24. import java.awt.event.*;
  25. import java.io.Serializable;
  26.  
  27. import com.sun.java.swing.*;
  28. import com.sun.java.swing.border.*;
  29. import com.sun.java.swing.plaf.*;
  30.  
  31.  
  32. /**
  33.  * BasicMenuItem implementation
  34.  * <p>
  35.  * Warning: serialized objects of this class will not be compatible with
  36.  * future swing releases.  The current serialization support is appropriate 
  37.  * for short term storage or RMI between Swing1.0 applications.  It will
  38.  * not be possible to load serialized Swing1.0 objects with future releases
  39.  * of Swing.  The JDK1.2 release of Swing will be the compatibility
  40.  * baseline for the serialized form of Swing objects.
  41.  *
  42.  * @version 1.59 02/02/98
  43.  * @author Georges Saab
  44.  * @author David Karlton
  45.  * @author Arnaud Weber
  46.  */
  47. public class BasicMenuItemUI extends MenuItemUI implements Serializable
  48. {
  49.  
  50.     protected static Color pressedBackground;
  51.     protected static Color pressedForeground;
  52.     // visual constants
  53.     protected static final int defaultTextIconGap = 4;
  54.     protected MouseListener mouseListener;
  55.     protected MouseMotionListener dragListener;
  56.     
  57.     protected Icon menuArrow = null;
  58.     protected Icon checkIcon = null;
  59.  
  60.     protected boolean oldBorderPainted;
  61.  
  62.     public static ComponentUI createUI(JComponent c) {
  63.         return new BasicMenuItemUI();
  64.     }
  65.  
  66.     public void installUI(JComponent c) {
  67.     JMenuItem menuItem = (JMenuItem) c;
  68.     // Create and install listeners
  69.     initListeners(c);
  70.     addListeners(c);
  71.     // Set defaults
  72.     c.setOpaque(true);
  73.     LookAndFeel.installBorder(c,"MenuItem.border");
  74.     oldBorderPainted = menuItem.isBorderPainted();
  75.     menuItem.setBorderPainted( ( (Boolean) (UIManager.get("MenuItem.borderPainted")) ).booleanValue() );
  76.     LookAndFeel.installColorsAndFont(c,
  77.                           "MenuItem.background",
  78.                           "MenuItem.foreground",
  79.                           "MenuItem.font");
  80.     // MenuItem specific defaults
  81.     if (pressedBackground == null || 
  82.         pressedBackground instanceof UIResource) {
  83.         pressedBackground = 
  84.         UIManager.getColor("MenuItem.pressedBackground");
  85.     }
  86.     if (pressedForeground == null || 
  87.         pressedForeground instanceof UIResource) {
  88.         pressedForeground = 
  89.         UIManager.getColor("MenuItem.pressedForeground");
  90.     }
  91.     // Icons
  92.     if (menuArrow == null ||
  93.         menuArrow instanceof UIResource) {
  94.         menuArrow = UIManager.getIcon("MenuItem.arrowIcon");
  95.     }
  96.     if (checkIcon == null ||
  97.         checkIcon instanceof UIResource) {
  98.         checkIcon = UIManager.getIcon("MenuItem.checkIcon");
  99.     }
  100.     }
  101.  
  102.     public void uninstallUI(JComponent c) {
  103.     removeListeners(c);
  104.     LookAndFeel.uninstallBorder(c);
  105.     ((JMenuItem) c).setBorderPainted( oldBorderPainted );
  106.     if (menuArrow instanceof UIResource)
  107.         menuArrow = null;
  108.     if (checkIcon instanceof UIResource)
  109.         checkIcon = null;
  110.     }
  111.  
  112.     protected void initListeners(JComponent c) {
  113.         mouseListener = createMouseListener(c);
  114.         dragListener = createMouseMotionListener(c);
  115.     }
  116.  
  117.     protected void addListeners(JComponent c) {
  118.         c.addMouseListener(mouseListener);
  119.         c.addMouseMotionListener(dragListener);
  120.     }
  121.  
  122.     protected void removeListeners(JComponent c) {
  123.         c.removeMouseListener(mouseListener);
  124.         c.removeMouseMotionListener(dragListener);
  125.     }
  126.  
  127.     protected MouseListener createMouseListener(JComponent c) {
  128.     return new BasicMenuMouseListener();
  129.     }
  130.  
  131.     protected MouseMotionListener createMouseMotionListener(JComponent c) {
  132.     return new BasicMenuMouseMotionListener();
  133.     }
  134.  
  135.     public Dimension getMinimumSize(JComponent c) {
  136.         return getPreferredSize(c);
  137.     }
  138.  
  139.     public Dimension getPreferredSize(JComponent c) {
  140.         Icon checkIcon = getCheckIcon();
  141.         Icon arrowIcon = getMenuArrow();
  142.     return BasicGraphicsUtils.getPreferredMenuItemSize(c,
  143.                    checkIcon, arrowIcon, defaultTextIconGap);
  144.     }
  145.  
  146.     public Dimension getMaximumSize(JComponent c) {
  147.         return getPreferredSize(c);
  148.     }
  149.  
  150.  
  151.     /**
  152.      * We draw the background in BasicGraphicsUtils.paintMenuItem()
  153.      * so override update (which fills the background of opaque
  154.      * components by default) to just call paint().
  155.      *
  156.      * @see BasicGraphicsUtils#paintMenuItem
  157.      */
  158.     public void update(Graphics g, JComponent c) {
  159.         paint(g, c);
  160.     }
  161.  
  162.     public void paint(Graphics g, JComponent c) {
  163.     BasicGraphicsUtils.paintMenuItem(g, c, getCheckIcon(), getMenuArrow(),
  164.                      pressedBackground, pressedForeground,
  165.                      defaultTextIconGap);
  166.     }
  167.  
  168.     public Insets getDefaultMargin(AbstractButton c) { 
  169.         return new Insets(2,2,2,2);
  170.     }
  171.  
  172.     Icon getMenuArrow(){
  173.     return menuArrow;
  174.     }
  175.  
  176.     Icon getCheckIcon() {
  177.     return checkIcon;
  178.     }
  179.  
  180.     public void processMouseEvent(JMenuItem item,MouseEvent e,MenuElement path[],MenuSelectionManager manager) {
  181.         Point p = e.getPoint();
  182.         if(p.x >= 0 && p.x < item.getWidth() &&
  183.            p.y >= 0 && p.y < item.getHeight()) {
  184.             if(e.getID() == MouseEvent.MOUSE_RELEASED) {
  185.                 manager.clearSelectedPath();
  186.                 item.doClick(0);
  187.             } else
  188.                 manager.setSelectedPath(path);
  189.         } else if(e.getID() == MouseEvent.MOUSE_RELEASED) {
  190.             manager.clearSelectedPath();
  191.         } else if(item.getModel().isArmed()) {
  192.             MenuElement newPath[] = new MenuElement[path.length-1];
  193.             int i,c;
  194.             for(i=0,c=path.length-1;i<c;i++)
  195.                 newPath[i] = path[i];
  196.             manager.setSelectedPath(newPath);
  197.         }
  198.     }
  199.  
  200.     private int lower(int ascii) {
  201.         if(ascii >= 'A' && ascii <= 'Z')
  202.             return ascii + 'a' - 'A';
  203.         else
  204.             return ascii;
  205.     }
  206.     
  207.     public void processKeyEvent(JMenuItem item,KeyEvent e,MenuElement path[],MenuSelectionManager manager) {
  208.         int key = item.getMnemonic();
  209.         if(key == 0)
  210.             return;
  211.         if(e.getID() == KeyEvent.KEY_PRESSED) {
  212.      
  213.             if(lower(key) == lower((int)(e.getKeyChar()))) {
  214.                 manager.clearSelectedPath();
  215.                 item.doClick(0);
  216.                 e.consume();
  217.             }
  218.         }
  219.     }
  220. }
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.